+Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_realize): Fix
+ frame_right/frame_top screwup. (Detlef Reichl,
+ #78111)
+
+ * gtk/Makefile.am (install-data-local): Use
+ $(INSTALL_DATA) not $(INSTALL) when installing
+ theme files. (#77094, Ben Liblit)
+
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of
+Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_realize): Fix
+ frame_right/frame_top screwup. (Detlef Reichl,
+ #78111)
+
+ * gtk/Makefile.am (install-data-local): Use
+ $(INSTALL_DATA) not $(INSTALL) when installing
+ theme files. (#77094, Ben Liblit)
+
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of
+Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_realize): Fix
+ frame_right/frame_top screwup. (Detlef Reichl,
+ #78111)
+
+ * gtk/Makefile.am (install-data-local): Use
+ $(INSTALL_DATA) not $(INSTALL) when installing
+ theme files. (#77094, Ben Liblit)
+
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of
+Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_realize): Fix
+ frame_right/frame_top screwup. (Detlef Reichl,
+ #78111)
+
+ * gtk/Makefile.am (install-data-local): Use
+ $(INSTALL_DATA) not $(INSTALL) when installing
+ theme files. (#77094, Ben Liblit)
+
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of
+Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_realize): Fix
+ frame_right/frame_top screwup. (Detlef Reichl,
+ #78111)
+
+ * gtk/Makefile.am (install-data-local): Use
+ $(INSTALL_DATA) not $(INSTALL) when installing
+ theme files. (#77094, Ben Liblit)
+
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of
+Tue May 14 18:02:37 2002 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkwindow.c (gtk_window_realize): Fix
+ frame_right/frame_top screwup. (Detlef Reichl,
+ #78111)
+
+ * gtk/Makefile.am (install-data-local): Use
+ $(INSTALL_DATA) not $(INSTALL) when installing
+ theme files. (#77094, Ben Liblit)
+
Tue May 14 17:30:57 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.c: Fix format of
# Install a RC file for the default GTK+ theme, and key themes
install-data-local: install-ms-lib install-libtool-import-lib
$(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Default/gtk-2.0
- $(INSTALL) $(srcdir)/gtkrc.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0/gtkrc
+ $(INSTALL_DATA) $(srcdir)/gtkrc.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0/gtkrc
$(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Default/gtk-2.0-key
- $(INSTALL) $(srcdir)/gtkrc.key.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0-key/gtkrc
+ $(INSTALL_DATA) $(srcdir)/gtkrc.key.default $(DESTDIR)$(datadir)/themes/Default/gtk-2.0-key/gtkrc
$(mkinstalldirs) $(DESTDIR)$(datadir)/themes/Emacs/gtk-2.0-key
- $(INSTALL) $(srcdir)/gtkrc.key.emacs $(DESTDIR)$(datadir)/themes/Emacs/gtk-2.0-key/gtkrc
+ $(INSTALL_DATA) $(srcdir)/gtkrc.key.emacs $(DESTDIR)$(datadir)/themes/Emacs/gtk-2.0-key/gtkrc
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
rm -f $(DESTDIR)$(datadir)/themes/Default/gtk-2.0/gtkrc
attributes.window_type = GDK_WINDOW_CHILD;
attributes.x = window->frame_left;
- attributes.y = window->frame_right;
+ attributes.y = window->frame_top;
attributes_mask = GDK_WA_X | GDK_WA_Y;